home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 September (Special) / Chip-Special_2004-09_Digitalni-Hudba.bin / servis / invest / dskinv.exe / {app} / di.exe / 0 / RCDATA / THEXCONVERTERFORM / THEXCONVERTERFORM.txt
Text File  |  2003-05-02  |  1KB  |  74 lines

  1. object hexconverterform: Thexconverterform
  2.   Left = 445
  3.   Top = 374
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Hex Converter'
  7.   ClientHeight = 136
  8.   ClientWidth = 385
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -13
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poScreenCenter
  17.   Scaled = False
  18.   OnCreate = FormCreate
  19.   OnDestroy = FormDestroy
  20.   PixelsPerInch = 120
  21.   TextHeight = 16
  22.   object Label1: TLabel
  23.     Left = 24
  24.     Top = 24
  25.     Width = 50
  26.     Height = 16
  27.     Caption = 'Decimal'
  28.   end
  29.   object Label2: TLabel
  30.     Left = 208
  31.     Top = 24
  32.     Width = 80
  33.     Height = 16
  34.     Caption = 'Hexadecimal'
  35.   end
  36.   object decedit: TEdit
  37.     Left = 24
  38.     Top = 40
  39.     Width = 161
  40.     Height = 24
  41.     TabOrder = 0
  42.     Text = '0'
  43.     OnChange = deceditChange
  44.   end
  45.   object hexedit: TEdit
  46.     Left = 208
  47.     Top = 40
  48.     Width = 153
  49.     Height = 24
  50.     TabOrder = 1
  51.     Text = '0'
  52.     OnChange = hexeditChange
  53.   end
  54.   object closebutton: TButton
  55.     Left = 264
  56.     Top = 96
  57.     Width = 97
  58.     Height = 25
  59.     Caption = '&Close'
  60.     Default = True
  61.     TabOrder = 2
  62.     OnClick = closebuttonClick
  63.   end
  64.   object helpbutton: TButton
  65.     Left = 24
  66.     Top = 96
  67.     Width = 83
  68.     Height = 25
  69.     Caption = '&Help'
  70.     TabOrder = 3
  71.     OnClick = helpbuttonClick
  72.   end
  73. end
  74.